home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_03_05
/
3n05055b
< prev
next >
Wrap
Text File
|
1992-03-08
|
1KB
|
32 lines
Listing 4
/*****************************************************/
/* fpumsg.h */
/* -- Interface to fpumsg module. */
/*****************************************************/
/*****************************************************/
/* Types. */
/*****************************************************/
/* Callback. */
/* -- First word is 6 exception bits. */
/* -- Second word is CS of offending instruction. */
/* -- Third word is IP of offending instruction. */
typedef void (FAR * LPFN_NOTIFY)(WORD, WORD, WORD);
/*****************************************************/
/* Prototypes. */
/*****************************************************/
/* The guy that does all the work. */
BOOL FPeekMessageLpfn(LPMSG, HWND, WORD, WORD, WORD,
LPFN_NOTIFY);
/* Kludge since MSC 6.0 can't compile: */
/* WORD rgw[7]; */
/* _asm fstenv rgw; */
/* without generating an internal compiler error. */
VOID Notify(WORD, LPFN_NOTIFY);